home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 1
/
Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso
/
mac
/
WINDOWS
/
MISCUTIL
/
WLIT21
/
UPDATEA.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-08-12
|
412b
|
19 lines
@echo off
echo Are you sure you want to update mywin31.zip to drive a: ?
pause
if not exist a:\mywin31.zip goto doit
echo Existing mywin31.zip would be deleted!!!
echo Delete manually if you're sure and then try again.
goto exit
pause
:doit
a:\pkzip -rp a:\mywin31.zip c:\winlite\*.*
if errorlevel 1 goto abort
echo Update succeeded.
goto exit
:abort
echo Update aborted -- zip failed.
:exit